home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ViewTester / Sources / MacVers.r < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.3 KB  |  67 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                MacVers.r
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Author:                Henri Lamiraux
  7. //
  8. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #include "Types.r"
  13. #include "SysTypes.r"
  14.  
  15. #ifndef FWBLDDEF_H
  16. #include "FWBldDef.h"
  17. #endif
  18.  
  19. //-------------------------------------------------------------------------------------
  20. // Defines
  21. //-------------------------------------------------------------------------------------
  22.  
  23. #define kRelease "ODF Release 2"
  24. #define kVersion "1.1"
  25.  
  26. #ifdef FW_BUILD_MAC68K
  27. #ifdef FW_DEBUG
  28.     #define kBuild " (68K Debug)"
  29. #else
  30.     #define kBuild " (68K)"
  31. #endif
  32. #endif
  33.  
  34. #ifdef FW_BUILD_MACPPC
  35. #ifdef FW_DEBUG
  36.     #define kBuild " (PPC Debug)"
  37. #else
  38.     #define kBuild " (PPC)"
  39. #endif
  40. #endif
  41.  
  42. //-------------------------------------------------------------------------------------
  43. // vers Resources
  44. //-------------------------------------------------------------------------------------
  45.  
  46. resource 'vers' (1) {
  47.     0x01,
  48.     0x10,
  49.     final,
  50.     0x00,
  51.     verUS,
  52.     kRelease,
  53.     kVersion
  54.     kBuild
  55.     "\n© 1993-1996 Apple Computer, Inc."
  56. };
  57.  
  58. resource 'vers' (2) {
  59.     0x1,
  60.     0x10,
  61.     final,
  62.     0x00,
  63.     verUS,
  64.     kRelease,
  65.     kRelease
  66. };
  67.